home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 22 / CU Amiga Magazine's Super CD-ROM 22 (1998)(EMAP Images)(GB)[!][issue 1998-05].iso / PowerPC / Graphics / SViewNG / SuperViewLibrary / PackerSupport / Install_Unpack < prev    next >
Encoding:
Text File  |  1998-03-06  |  589 b   |  24 lines

  1. ; $VER: Install_UnpackObject.script V2.2 (16.7.95)
  2. ; © 1994-95 by Andreas R. Kleinert.
  3. ; This is the Installer Script for my Unpack-SVObject
  4.  
  5. (set svlibdir
  6.             (askdir
  7.                    (prompt "Library Path")
  8.                    (help @askdir-help)
  9.                    (newpath)
  10.                    (default "LIBS:")
  11.             )
  12. )
  13.  
  14. (makedir (tackon svlibdir "svobjects"))
  15.  
  16. (copyfiles
  17.   (prompt "Installing FastILBM24.svobject to LIBS:svobjects ...")
  18.   (help @copyfiles-help)
  19.   (source "libs/svobjects")
  20.   (dest (tackon svlibdir "svobjects"))
  21.   (pattern "#?.svobject")
  22.   (files)
  23. )
  24.